From 72be6c494aa0df8bbc3f3f9137694b58e70eeee4 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Tue, 21 Jan 2014 19:48:41 -0500 Subject: [PATCH] Make GTK_TREE_SORTABLE_*_SORT_COLUMN_ID defines instead of enum This allows it to be more easily documented. --- gtk/gtktreesortable.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gtk/gtktreesortable.h b/gtk/gtktreesortable.h index c9508b5c0c..848c2afb12 100644 --- a/gtk/gtktreesortable.h +++ b/gtk/gtktreesortable.h @@ -43,6 +43,7 @@ G_BEGIN_DECLS * * See also gtk_tree_sortable_set_sort_column_id() */ +#define GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID (-1) /** * GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID: @@ -52,11 +53,7 @@ G_BEGIN_DECLS * * See also gtk_tree_sortable_set_sort_column_id() */ - -enum { - GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID = -1, - GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID = -2 -}; +#define GTK_TREE_SORTABLE_UNSORTED_SORT_COLUMN_ID (-2) typedef struct _GtkTreeSortable GtkTreeSortable; /* Dummy typedef */ typedef struct _GtkTreeSortableIface GtkTreeSortableIface; -- 2.30.2